Stored Procedures [dbo].[BAEImisIsoCurrencyCodesGetAllWithExchangeRate]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
SQL Script
CREATE PROCEDURE [dbo].[BAEImisIsoCurrencyCodesGetAllWithExchangeRate]
AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    -- Insert statements for procedure here
    SELECT * from Iso_Currency_Codes where CurrencyCode IN (Select CurrencyCode from Exchange_Rate)
END

GO
Uses